/* ===========================================
   GLOBAL RESET + FUTURISTIC BASE THEME
=========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Poppins, sans-serif;
}

body {
    background: radial-gradient(circle at top, #0a0f1f, #000000);
    color: #d9e6ff;
    min-height: 100vh;
    padding: 40px 10px;
    display: flex;
    flex-direction: column; /* 🔑 THIS IS THE MISSING PIECE */
    align-items: center;
    overflow-x: hidden;
}


/* Neon glow blueprint grid background */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url("kdh.png");
    opacity: 0.04;
    z-index: -1;
}



/* =========================================
   ABOUT PAGE HEADER
   =========================================
   REMARK:
   Lightweight glass header that sits cleanly
   above the hero without affecting layout.
*/

.about-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(2, 8, 20, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #00eaff33;
}

.about-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 8%;
}

/* Logo */
.about-header-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 14px rgba(0, 234, 255, 0.45);
}

.about-header-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Navigation */
.about-nav {
  display: flex;
  gap: 26px;
}

.about-nav a {
  color: #eaf6ff;
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.85;
  position: relative;
}

.about-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #00eaff;
  transition: 0.3s ease;
}

.about-nav a:hover::after,
.about-nav a[aria-current="page"]::after {
  width: 100%;
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: radial-gradient(circle at top, #061a2f, #020814);
  color: #eaf6ff;
  overflow-x: hidden;
}




/* ===========================================
   FORM CONTAINER
=========================================== */
.form-wrapper {
    width: 100%;
    max-width: 750px;
    background: rgba(10, 20, 40, 0.7);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(0, 255, 255, 0.25);
    padding: 40px 30px;
    border-radius: 18px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    animation: fadeIn 1.4s ease forwards;
}

/* Title and subtitle */
.form-title {
    text-align: center;
    font-size: 2.4rem;
    letter-spacing: 2px;
    color: #00eaff;
    text-shadow: 0 0 12px #00eaff;
}

.form-sub {
    text-align: center;
    font-size: 1rem;
    margin-top: 8px;
    color: #9bc6ff;
}

/* ===========================================
   SECTION TITLES
=========================================== */
.section-title {
    margin: 25px 0 15px;
    font-size: 1.3rem;
    color: #00c8ff;
    text-shadow: 0 0 6px #00c8ff;
}

/* ===========================================
   INPUTS + TEXTAREA + SELECT
=========================================== */
.form-group {
    margin-bottom: 18px;
}

label {
    display: block;
    margin-bottom: 6px;
    color: #a8d8ff;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 255, 255, 0.25);
    border-radius: 10px;
    color: black;
    font-size: 1rem;
    outline: none;
    transition: 0.25s ease;
}

/* Input Glow on Focus */
input:focus,
select:focus,
textarea:focus {
    border-color: #00eaff;
    box-shadow: 0 0 8px #00eaff;
}

/* ===========================================
   RADIO BUTTONS
=========================================== */
.radio-group {
    display: grid;
    gap: 12px;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.radio-item input[type="radio"] {
    accent-color: #00eaff; /* Neon-colored radio circle */
}

.radio-item span {
    font-size: 1.05rem;
}

/* ===========================================
   SUBMIT BUTTON
=========================================== */
.submit-btn {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(90deg, #00c8ff, #007bff);
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

/* Futuristic Glow */
.submit-btn:hover {
    box-shadow: 0 0 15px #00aaff;
    transform: translateY(-2px);
}

/* Button Glow Wave Animation */
.submit-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.4s;
}

.submit-btn:hover::before {
    left: 100%;
}

/* ===========================================
   ANIMATIONS
=========================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =====================================================
   SUCCESS POPUP NOTIFICATION
===================================================== */
.success-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(0, 255, 200, 0.15);
    border: 1px solid #00ffc8;
    box-shadow: 0 0 20px #00ffc8;
    padding: 18px 24px;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    animation: popupSlide 0.4s ease forwards;
    z-index: 999;
    color: #dff;
}

@keyframes popupSlide {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.success-popup.hide {
    opacity: 0;
    transform: translateY(-20px);
    transition: 0.4s ease;
}



/* ==============================
   KDH FOOTER
============================== */

.kdh-footer {
  width: 100%;
  background: linear-gradient(180deg, rgba(5,12,20,0.95), rgba(2,6,12,1));
  border-top: 1px solid rgba(120,180,255,0.15);
  padding: 24px 12px;
  position: relative;
  z-index: 5;
}

.kdh-footer-inner {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.kdh-footer-label {
  display: block;
  font-size: 13px;
  letter-spacing: 2px;
  color: #9cc9ff;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.kdh-social-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
}

.kdh-social-links a {
  display: inline-flex;
  width: 26px;
  height: 26px;
  opacity: 0.7;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.kdh-social-links img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(120,180,255,0.35));
}

.kdh-social-links a:hover {
  opacity: 1;
  transform: translateY(-3px) scale(1.12);
}

.kdh-footer-copy {
  font-size: 12px;
  color: rgba(200,220,255,0.55);
  margin-top: 6px;
}



.kdh-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(120,180,255,0.08), transparent 70%);
  pointer-events: none;
}
